blob: 841d86350d6119509649652d14c0af325b00d36d (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
|
import type { Metadata } from 'next';
import { BreakdownPage } from './BreakdownPage';
export default async function ({ params }: { params: Promise<{ websiteId: string }> }) {
const { websiteId } = await params;
return <BreakdownPage websiteId={websiteId} />;
}
export const metadata: Metadata = {
title: 'Insights',
};
|